home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cm100exe.zip / CM100EXE.EXE / SAMPLES / MASM / A_WORLD.ASM < prev    next >
Assembly Source File  |  1991-11-16  |  235b  |  18 lines

  1. ; a_world.asm - Function to call C function to print "World"
  2.  
  3. TITLE  world.asm
  4. DOSSEG
  5. .MODEL SMALL,C
  6.  
  7. .CODE
  8.  
  9. include world.inc
  10. ; CMAKE - INCLUDE END
  11.  
  12. a_print_world PROC
  13.   call print_world
  14.   ret
  15. a_print_world ENDP
  16.  
  17. END
  18.